home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 October: Mac OS SDK / Dev.CD Oct 00 SDK1.toast / Development Kits / Mac OS / Thread Manager / Sample Applications / Power Examples / ThreadedSort / SortPicts.r < prev    next >
Encoding:
Text File  |  1994-11-22  |  1.8 KB  |  48 lines  |  [TEXT/MPS ]

  1. /* SortPicts resource file */
  2. #include "Types.r"
  3. #include "CodeFragmentTypes.r"
  4.  
  5. /* Include the SortPicts resources */
  6. include "SortPicts.rsrc" not 'ckid';
  7. include ":Sprocket:CreditsBox.rsrc" not 'ckid';
  8. include ":Sprocket:Sprocket.rsrc" not 'ckid';
  9.  
  10. resource 'cfrg' (0) {
  11.    {
  12.       kPowerPC,            /* Target machine's Architecture. */
  13.       kFullLib,            /* This is not an update. */
  14.       kNoVersionNum,        /* Current version. */
  15.       kNoVersionNum,        /* Definition version. */
  16.       kDefaultStackSize,    /* Stack size of application. */
  17.       kNoAppSubFolder,    /* Not used here.  Can be the resource-id of an 'alis'
  18.                                resource.  Used to provide additional location
  19.                                to search for libraries. */
  20.       kIsApp,                /* This is an application (not a lib or drop-in). */
  21.       kOnDiskFlat,            /* This code fragment is on disk, in the data fork. */
  22.       kZeroOffset,            /* Offset of code into data fork. */
  23.       kWholeFork,            /* Code takes up all of data fork (can give a size). */
  24.       "SortPicts"            /* Name of application. */
  25.    }
  26. };
  27.  
  28. resource 'SIZE' (-1) {
  29.     dontSaveScreen,
  30.     acceptSuspendResumeEvents,
  31.     enableOptionSwitch,
  32.     canBackground,                /* Can properly use background null events    */
  33.     doesActivateOnFGSwitch,        /* We do our own activate/deactivate; don't fake us out */
  34.     backgroundAndForeground,    /* This is definitely not a background-only application! */
  35.     dontGetFrontClicks,            /* Change this is if you want "do first click" behavior like the Finder */
  36.     ignoreAppDiedEvents,        /* Essentially, I'm not a debugger (sub-launching) */
  37.     is32BitCompatible,            /* This app can be run in 32-bit address space */
  38.     isHighLevelEventAware,        /* does Post/AcceptHighLevelEvent */
  39.     localAndRemoteHLEvents,
  40.     notStationeryAware,
  41.     dontUseTextEditServices,
  42.     reserved,
  43.     reserved,
  44.     reserved,
  45.     1500 * 1024,
  46.     1500 * 1024
  47. };
  48.